home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / Presentations / CocoaForHackers / HackMac - SampleCocoaHackBundle / HQInfoPanelController.h < prev    next >
Encoding:
Text File  |  2000-06-16  |  417 b   |  18 lines

  1. // HQInfoPanelController.h
  2. //
  3. // You may freely copy, distribute, and reuse the code in this example.
  4. // Apple disclaims any warranty of any kind, expressed or  implied, as to its
  5. // fitness for any particular use.
  6.  
  7.  
  8. #import <AppKit/AppKit.h>
  9.  
  10. @interface HQInfoPanelController : NSWindowController {
  11.     IBOutlet NSTextField *versionField;
  12.     IBOutlet NSTextView *textView;
  13. }
  14.  
  15. + (id)sharedInfoPanelController;
  16.  
  17. @end
  18.